home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src_win / WinHTTrack / Wizard.cpp < prev    next >
C/C++ Source or Header  |  2003-12-29  |  2KB  |  66 lines

  1. // wizard.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Shell.h"
  6. #include "wizard.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. extern HICON httrack_icon;
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // wizard dialog
  17.  
  18.  
  19. wizard::wizard(CWnd* pParent /*=NULL*/)
  20.     : CDialog(wizard::IDD, pParent)
  21. {
  22.     //{{AFX_DATA_INIT(wizard)
  23.     m_reponse = _T("");
  24.     m_question = _T("");
  25.     //}}AFX_DATA_INIT
  26. }
  27.  
  28.  
  29. void wizard::DoDataExchange(CDataExchange* pDX)
  30. {
  31.     CDialog::DoDataExchange(pDX);
  32.     //{{AFX_DATA_MAP(wizard)
  33.     DDX_Text(pDX, IDC_reponse, m_reponse);
  34.     DDX_Text(pDX, IDC_question, m_question);
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(wizard, CDialog)
  40.     //{{AFX_MSG_MAP(wizard)
  41.     //}}AFX_MSG_MAP
  42.     ON_COMMAND(ID_HELP, OnHelp)
  43. END_MESSAGE_MAP()
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // wizard message handlers
  47.  
  48. BOOL wizard::OnInitDialog() 
  49. {
  50.     CDialog::OnInitDialog();
  51.     
  52.   SetIcon(httrack_icon,false);
  53.   SetIcon(httrack_icon,true);  
  54.   SetForegroundWindow();   // yop en premier plan!
  55.  
  56.   // Patcher l'interface pour les Franτais ;-)
  57.   if (LANG_T(-1)) {    // Patcher en franτais
  58.     //SetDlgItemText(,"");
  59.     SetWindowTextCP(this, LANG(LANG_L1) /*"Question du wizard"*/);
  60.     SetDlgItemTextCP(this, IDC_STATIC_answer,LANG(LANG_L2) /*"Votre rΘponse:"*/);
  61.   }
  62.  
  63.     return TRUE;  // return TRUE unless you set the focus to a control
  64.                   // EXCEPTION: OCX Property Pages should return FALSE
  65. }
  66.